-
Notifications
You must be signed in to change notification settings - Fork 1
Fix1 #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
index.php
Outdated
@@ -1,2 +1,3 @@ | |||
<?php | |||
echo 'Hello world'; | |||
if(true){ echo "True"; } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ERROR: Expected 1 space after IF keyword; 0 found
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ERROR: Expected 1 space after closing parenthesis; found 0
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ERROR: Newline required after opening brace
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ERROR: Closing brace must be on a line by itself
echo 'Hello world'; | ||
if(true){ echo "True"; } | ||
|
||
function hoge() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ERROR: Opening brace should be on a new line
test.php
Outdated
@@ -0,0 +1,12 @@ | |||
<?php | |||
echo 'Hello world'; | |||
if(true){ echo "True"; } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ERROR: Expected 1 space after IF keyword; 0 found
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ERROR: Expected 1 space after closing parenthesis; found 0
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ERROR: Newline required after opening brace
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ERROR: Closing brace must be on a line by itself
echo "True"; | ||
} | ||
|
||
function hoge() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ERROR: Opening brace should be on a new line
No description provided.